home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendar-alarm-snooze-popup.xul < prev    next >
Extensible Markup Language  |  2007-12-09  |  5KB  |  115 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla Calendar code.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    -   Philipp Kewisch <mozilla@kewis.ch>
  19.    - Portions created by the Initial Developer are Copyright (C) 2007
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  39. <?xml-stylesheet href="chrome://calendar/skin/calendar-alarm-dialog.css" type="text/css"?>
  40.  
  41. <!DOCTYPE dialog
  42. [
  43.   <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
  44.   <!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
  45. ]>
  46.  
  47. <window id="calendar-alarm-snooze-popup-window"
  48.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  49.         hidechrome="true"
  50.         title="&calendar.alarm.snoozefor.label;"
  51.         onkeydown="windowKeyDown(event)"
  52.         onblur="windowBlur(event)"
  53.         onmouseout="windowMouseOut(event)"
  54.         onDOMContentLoaded="window.sizeToContent()"
  55.         onload="windowLoad(event)">
  56. <script type="application/x-javascript" src="chrome://calendar/content/calUtils.js"/>
  57. <script type="application/x-javascript" src="chrome://calendar/content/calendar-alarm-dialog.js"/>
  58. <script type="application/x-javascript" src="chrome://calendar/content/calendar-alarm-snooze-popup.js"/>
  59.  
  60. <radiogroup id="custom-menupopup-radiogroup"
  61.             onfocus="event.target.selectedIndex = 0;"
  62.             onblur="radiogroupBlur(event, this)"
  63.             onmouseover="radiogroupMouseOver(event, this)">
  64.   <radio label="&calendar.alarm.snooze.5minutes.label;"
  65.          value="5"
  66.          onclick="radioSnooze(event)"
  67.          onkeypress="radioSnooze(event)"/>
  68.   <radio label="&calendar.alarm.snooze.10minutes.label;"
  69.          value="10"
  70.          onclick="radioSnooze(event)"
  71.          onkeypress="radioSnooze(event)"/>
  72.   <radio label="&calendar.alarm.snooze.15minutes.label;"
  73.          value="15"
  74.          onclick="radioSnooze(event)"
  75.          onkeypress="radioSnooze(event)"/>
  76.   <radio label="&calendar.alarm.snooze.30minutes.label;"
  77.          value="30"
  78.          onclick="radioSnooze(event)"
  79.          onkeypress="radioSnooze(event)"/>
  80.   <radio label="&calendar.alarm.snooze.45minutes.label;"
  81.          value="45"
  82.          onclick="radioSnooze(event)"
  83.          onkeypress="radioSnooze(event)"/>
  84.   <radio label="&calendar.alarm.snooze.1hour.label;"
  85.          value="60"
  86.          onclick="radioSnooze(event)"
  87.          onkeypress="radioSnooze(event)"/>
  88.   <radio label="&calendar.alarm.snooze.2hours.label;"
  89.          value="120"
  90.          onclick="radioSnooze(event)"
  91.          onkeypress="radioSnooze(event)"/>
  92.   <radio label="&calendar.alarm.snooze.1day.label;"
  93.          value="1440"
  94.          onclick="radioSnooze(event)"
  95.          onkeypress="radioSnooze(event)"/>
  96. </radiogroup>
  97. <menuseparator/>
  98. <hbox>
  99.   <textbox id="custom-menupopup-alarm-value"
  100.            size="1"
  101.            oninput="checkSnoozeValue('custom-menupopup-alarm');"/>
  102.   <menulist id="custom-menupopup-alarm-unit">
  103.    <menupopup>
  104.      <menuitem label="&calendar.global.units.minutes;" value="1"/>
  105.      <menuitem label="&calendar.global.units.hours;" value="60"/>
  106.      <menuitem label="&calendar.global.units.days;" value="1440"/>
  107.    </menupopup>
  108.   </menulist>
  109.   <button id="custom-menupopup-alarm-button"
  110.           class="custom-menupopup-ok-button"
  111.           oncommand="textboxSnooze()"/>
  112.   <button class="custom-menupopup-cancel-button" oncommand="window.close()"/>
  113. </hbox>
  114. </window>
  115.